home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Encarta World Atlas 1999 / Encarta World 99 Install Disk.iso / support / DirHTML / diagnose.dcr / 00033.ls < prev    next >
Encoding:
Text File  |  1998-09-01  |  330 b   |  19 lines

  1. property piFrameCount
  2.  
  3. on beginSprite me
  4.   set piFrameCount to 0
  5.   add(the actorList, me)
  6. end
  7.  
  8. on endSprite me
  9.   deleteOne(the actorList, me)
  10. end
  11.  
  12. on stepFrame me
  13.   set piFrameCount to piFrameCount + 1
  14.   if piFrameCount mod 5 then
  15.     exit
  16.   end if
  17.   set the member of sprite the spriteNum of me to member ("dot" & random(2))
  18. end
  19.